home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / c / flash-0.4.3.lha / flash-0.4.3 / Lib / cxform.cc < prev    next >
C/C++ Source or Header  |  1999-02-21  |  2KB  |  61 lines

  1. /////////////////////////////////////////////////////////////
  2. // Flash Plugin and Player
  3. // Copyright (C) 1998,1999 Olivier Debon
  4. // 
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9. // 
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. // GNU General Public License for more details.
  14. // 
  15. // You should have received a copy of the GNU General Public License
  16. // along with this program; if not, write to the Free Software
  17. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18. // 
  19. ///////////////////////////////////////////////////////////////
  20. //  Author : Olivier Debon  <odebon@club-internet.fr>
  21. //  
  22.  
  23. static char *rcsid = "$Id";
  24.  
  25. #include "cxform.h"
  26.  
  27. long
  28. Cxform::getRed(long v) {
  29.     return (long)(ra*v+rb);
  30. }
  31.  
  32. long
  33. Cxform::getGreen(long v) {
  34.     return (long)(ga*v+gb);
  35. }
  36.  
  37. long
  38. Cxform::getBlue(long v) {
  39.     return (long)(ba*v+bb);
  40. }
  41.  
  42. float
  43. Cxform::getAlpha(float v) {
  44.     return aa*v+ab;
  45. }
  46.  
  47. Color
  48. Cxform::getColor(Color color) {
  49.     Color newColor;
  50.  
  51.     newColor.red = getRed(color.red);
  52.     newColor.green = getGreen(color.green);
  53.     newColor.blue = getBlue(color.blue);
  54.     if (newColor.red > 255) newColor.red = 255;
  55.     if (newColor.green > 255) newColor.green = 255;
  56.     if (newColor.blue > 255) newColor.blue = 255;
  57.     newColor.alpha = getAlpha(color.alpha);
  58.  
  59.     return newColor;
  60. }
  61.